home *** CD-ROM | disk | FTP | other *** search
- <!--- This example shows the use of Fix --->
- <HTML>
- <HEAD>
- <TITLE>
- Fix Example
- </TITLE>
- </HEAD>
-
- <BASEFONT FACE="Arial, Helvetica" SIZE=2>
- <BODY bgcolor="#FFFFD5">
- <H3>Fix Example</H3>
-
- <P>Fix returns the closest integer less than the number
- if the number is greater than or equal to 0. Fix returns the
- closest integer greater than the number if number is less than 0.
- <CFOUTPUT>
- <P>The fix of 3.4 is #fix(3.4)#
- <P>The fix of 3 is #fix(3)#
- <P>The fix of 3.8 is #fix(3.8)#
- <P>The fix of -4.2 is #fix(-4.2)#
- </CFOUTPUT>
-
- </BODY>
- </HTML>
-